:root {
  --blue: #1d5d99;
  --dark: #0b2f4f;
  --orange: #f7931e;
  --white: #fff;
  --light: #f4f6f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* TOP BAR */

.top-bar {
  background: #1d5d99;
  color: #fff;
  padding: 10px 8%;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-right a {
  color: #fff;
  margin-left: 20px;
}

/* HEADER */

.main-header {
  background: #fff;
  padding: 25px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 42px;
  font-weight: 800;
  color: #10253d;
}

.logo span {
  color: #f7931e;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 40px;
}

.contact-box h4 {
  font-size: 14px;
  color: #777;
  margin-bottom: 4px;
}

.contact-box p {
  font-weight: bold;
}

.quote-btn {
  background: #f7931e;
  color: white;
  padding: 14px 28px;
  font-weight: bold;
}

/* ======================
   NAVBAR
====================== */

.navbar {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 20px;
  position: relative;
  z-index: 1000;
}

.navbar a {
  color: #0b2f4f;
  font-weight: 700;
  font-size: 15px;
}

.dropdown {
  position: relative;
}

/* Default black */

.navbar a,
.drop-btn {
  color: #0b2f4f;
  font-weight: 700;
  transition: 0.3s;
}

/* Hover par orange */

.navbar a:hover,
.dropdown:hover .drop-btn {
  color: #f7931e;
}

/* ======================
   MEGA MENU
====================== */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  width: 800px;

  background: #fff;

  display: none;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

  padding: 35px 40px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

  z-index: 999;
}

.dropdown:hover .mega-menu {
  display: grid;
}

.menu-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-column a{
    position: relative;
    padding-left: 22px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.menu-column a::before{
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #f7931e;
    font-size: 22px;
    font-weight: bold;
}


.menu-column a:hover{
    color: #f7931e;
    padding-left: 27px;
    transition: .3s;
}

/* HERO */

.wwd-hero {
  height: 350px;

  background:
    linear-gradient(rgba(11, 47, 79, 0.75), rgba(11, 47, 79, 0.75)),
    url("construction.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.wwd-hero h1 {
  color: white;
  font-size: 65px;
  font-weight: 800;
}

/* INTRO */

.wwd-intro {
  padding: 100px 8%;

  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.wwd-text p {
  margin-bottom: 20px;
  font-size: 17px;
}

.wwd-image img {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* SUPPORT SECTION */

.support-section {
  background: #eef3f7;

  padding: 100px 8%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-text h2 {
  color: var(--blue);
  font-size: 40px;
  margin-bottom: 25px;
}

.support-text h4 {
  margin: 25px 0 15px;
  color: var(--blue);
}

.support-text ul {
  list-style: none;
}

.support-text li {
  margin-bottom: 12px;
}

.support-image img {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* DIFFERENTIATORS */

.differentiators {
  padding: 100px 8%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.diff-text h2 {
  color: var(--blue);
  font-size: 40px;
  margin-bottom: 30px;
}

.diff-text ul {
  list-style: none;
}

.diff-text li {
  margin-bottom: 16px;
}

.diff-image img {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* CTA */

.cta{
    text-align:center;
    padding:100px 8%;

    background:
    linear-gradient(
    rgba(29,93,153,.85),
    rgba(29,93,153,.85)),
    url("construction1.avif");

    background-size:cover;
    background-position:center;

    color:white;
}

.cta h2{
    font-size:48px;
    margin-bottom:20px;
    color:white;
}

.cta p{
    font-size:18px;
    margin-bottom:30px;
    color:white;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    font-weight:bold;
    border-radius:4px;
    transition:.3s;
}

.orange{
    background:#f7931e;
    color:white;
}

.orange:hover{
    background:#df7c0c;
}

/* FOOTER */

.footer {
  background: #edf1f5;
  padding: 70px 8%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  display: inline-block;
  font-size: 45px;
  margin-bottom: 20px;
}

.footer h3 {
  color: var(--blue);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 12px;
}

.footer p {
  margin-bottom: 12px;
}

.footer a {
  color: #333;
}

.footer a:hover {
  color: var(--orange);
}

.copyright {
  background: #355a94;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ======================
   BROCHURE BTN
====================== */

.brochure-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  background: #f58220;
  color: #fff;

  text-decoration: none;
  font-size: 18px;
  font-weight: 600;

  padding: 18px 15px;

  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);

  border-radius: 8px 0 0 8px;
  z-index: 999;

  transition: 0.3s ease;
}

.brochure-btn:hover {
  background: #d96a0a;
  padding-right: 22px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .header-contact {
    display: none;
  }

  .wwd-intro,
  .support-section,
  .differentiators,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-wrap: wrap;
    gap: 20px;
  }

  .wwd-hero h1 {
    font-size: 45px;
  }

  .support-text h2,
  .diff-text h2 {
    font-size: 32px;
  }

  .cta h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 40px;
  }

  .top-bar {
    padding: 8px 5%;
  }

  .main-header {
    padding: 20px 5%;
  }

  .wwd-intro,
  .support-section,
  .differentiators,
  .footer {
    padding: 70px 5%;
  }

  .wwd-hero {
    height: 250px;
  }

  .wwd-hero h1 {
    font-size: 36px;
  }

  .cta {
    padding: 70px 5%;
  }

  .cta h2 {
    font-size: 28px;
  }
}
